fetchAppointmentHistory
fetchAppointmentHistory
Path Parameters
appointment_uuid string required
appointment_uuid
Header Parameters
authorization string required
authorization
application/json
Request Body required
request
dealerDepartmentUuidList string[]
requesterUserUuid string
Responses
- 200
- 201
- 401
- 403
- 404
OK
application/json
Schema
Example (from schema)
Schema
error object
serviceAppointmentHistoryList object[]
statusCode int32
warnings object[]
{
"error": {
"code": "string",
"description": "string",
"metadata": {}
},
"serviceAppointmentHistoryList": [
{
"appointmentUuid": "string",
"assignedToUserFirstName": "string",
"assignedToUserLastName": "string",
"assignedToUserUuid": "string",
"event": "string",
"eventDate": "string",
"eventTime": "string",
"eventUserUuid": "string",
"eventUsername": "string",
"platform": "string",
"preferredDate": "string",
"serviceEndTime": "string",
"serviceStartTime": "string",
"uuid": "string"
}
],
"statusCode": 0,
"warnings": [
{
"code": "string",
"description": "string"
}
]
}
Created
Unauthorized
Forbidden
Not Found
POST /appointment/:appointment_uuid/history
Request
Request
curl / cURL
curl -L -X POST '//api.mykaarma.com/mobile-service/appointment/:appointment_uuid/history' \
-H 'Content-Type: application/json' \
-H 'Accept: application/json' \
--data-raw '{
"dealerDepartmentUuidList": [
"string"
],
"requesterUserUuid": "string"
}'
python / requests
curl -L -X POST '//api.mykaarma.com/mobile-service/appointment/:appointment_uuid/history' \
-H 'Content-Type: application/json' \
-H 'Accept: application/json' \
--data-raw '{
"dealerDepartmentUuidList": [
"string"
],
"requesterUserUuid": "string"
}'
go / native
curl -L -X POST '//api.mykaarma.com/mobile-service/appointment/:appointment_uuid/history' \
-H 'Content-Type: application/json' \
-H 'Accept: application/json' \
--data-raw '{
"dealerDepartmentUuidList": [
"string"
],
"requesterUserUuid": "string"
}'
nodejs / axios
curl -L -X POST '//api.mykaarma.com/mobile-service/appointment/:appointment_uuid/history' \
-H 'Content-Type: application/json' \
-H 'Accept: application/json' \
--data-raw '{
"dealerDepartmentUuidList": [
"string"
],
"requesterUserUuid": "string"
}'
ruby / Net::HTTP
curl -L -X POST '//api.mykaarma.com/mobile-service/appointment/:appointment_uuid/history' \
-H 'Content-Type: application/json' \
-H 'Accept: application/json' \
--data-raw '{
"dealerDepartmentUuidList": [
"string"
],
"requesterUserUuid": "string"
}'
csharp / RestSharp
curl -L -X POST '//api.mykaarma.com/mobile-service/appointment/:appointment_uuid/history' \
-H 'Content-Type: application/json' \
-H 'Accept: application/json' \
--data-raw '{
"dealerDepartmentUuidList": [
"string"
],
"requesterUserUuid": "string"
}'
php / cURL
curl -L -X POST '//api.mykaarma.com/mobile-service/appointment/:appointment_uuid/history' \
-H 'Content-Type: application/json' \
-H 'Accept: application/json' \
--data-raw '{
"dealerDepartmentUuidList": [
"string"
],
"requesterUserUuid": "string"
}'
java / OkHttp
curl -L -X POST '//api.mykaarma.com/mobile-service/appointment/:appointment_uuid/history' \
-H 'Content-Type: application/json' \
-H 'Accept: application/json' \
--data-raw '{
"dealerDepartmentUuidList": [
"string"
],
"requesterUserUuid": "string"
}'
powershell / RestMethod
curl -L -X POST '//api.mykaarma.com/mobile-service/appointment/:appointment_uuid/history' \
-H 'Content-Type: application/json' \
-H 'Accept: application/json' \
--data-raw '{
"dealerDepartmentUuidList": [
"string"
],
"requesterUserUuid": "string"
}'